home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / lyaplib / destroy_lyap_windows.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-06  |  398 b   |  21 lines

  1. /*
  2. ### destroy a lyapunov window ###
  3. */
  4.  
  5. #include <suntool/sunview.h>
  6. #include <suntool/panel.h>
  7.  
  8. void destroy_lyap_windows()
  9. {
  10.         extern short lyap_panel_show;
  11.         extern Frame lyap_frame;
  12.         extern Panel lyap_panel;
  13.  
  14.         if(lyap_panel_show){
  15.                 window_destroy(lyap_panel);
  16.                 window_destroy(lyap_frame);
  17.                 lyap_panel_show=0;
  18.         }
  19. }
  20.  
  21.